home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / oas_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  85 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10654);
  10.  script_bugtraq_id(2569);
  11.  script_cve_id("CAN-2001-0419");
  12.  script_version ("$Revision: 1.11 $");
  13.  
  14.  name["english"] = "Oracle Application Server Overflow";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. It may be possible to make a web server execute
  19. arbitrary code by sending it a too long url after
  20. /jsp.
  21. Ie:
  22.     GET /jsp/AAAA.....AAAAA
  23.  
  24. Risk factor : High
  25. Solution : Contact your vendor for the latest software release.";
  26.  
  27.  desc["francais"] = "
  28. Il est peut etre possible de faire executer du code arbitraire
  29. α un serveur web en lui envoyant une URL trop longue aprΦs /jsp.
  30.  
  31. Ex:
  32.  
  33.     GET /jsp/AAAAAA....AAAAAA
  34.  
  35. Facteur de risque : ElevΘ
  36. Solution : Mettez α jour votre serveur web.";
  37.  
  38.  
  39.  script_description(english:desc["english"], francais:desc["francais"]);
  40.  
  41.  summary["english"] = "Web server buffer overflow";
  42.  summary["francais"] = "DΘpassement de buffer dans un serveur web";
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_DESTRUCTIVE_ATTACK);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  50.  family["english"] = "Gain root remotely";
  51.  family["francais"] = "Passer root α distance";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "www_too_long_url.nasl");
  54.  script_exclude_keys("www/too_long_url_crash");
  55.   script_require_ports("Services/www",80);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62.  
  63. include("http_func.inc");
  64.  
  65. port = get_http_port(default:80);
  66.  
  67. if(!get_port_state(port))exit(0);
  68.  
  69. if(http_is_dead(port:port))exit(0);
  70.  
  71. soc = http_open_socket(port);
  72. if(!soc)exit(0);
  73. req = string("/jsp/", crap(2500));
  74. req = http_get(item:req, port:port);
  75. send(socket:soc, data:req);
  76. r = http_recv(socket:soc);
  77. http_close_socket(soc);
  78.  
  79. if(!r){
  80.     security_hole(port);
  81.       }
  82.  
  83.  
  84.  
  85.